home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C06 / all.makefile next >
Encoding:
Makefile  |  2000-05-25  |  1.9 KB  |  71 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C06
  7. # using the all compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f all.makefile
  11.  
  12. .SUFFIXES : .obj .cpp .c
  13. .cpp.obj :
  14.     $(CPP) $(CPPFLAGS) -c $<
  15. .c.obj :
  16.     $(CPP) $(CPPFLAGS) -c $<
  17.  
  18. all: \
  19.     Constructor1.exe \
  20.     DefineInitialize.exe \
  21.     Nojump.exe \
  22.     Stash2Test.exe \
  23.     Stack3Test.exe \
  24.     Multiarg.exe \
  25.     AutoDefaultConstructor.exe 
  26.  
  27. test: all 
  28.     Constructor1.exe  
  29.     DefineInitialize.exe  
  30.     Nojump.exe  
  31.     Stash2Test.exe  
  32.     Stack3Test.exe  
  33.     Multiarg.exe  
  34.     AutoDefaultConstructor.exe  
  35.  
  36. bugs: 
  37.     @echo No compiler bugs in this directory!
  38.  
  39. Constructor1.exe: Constructor1.obj 
  40.     $(CPP) $(OFLAG)Constructor1.exe Constructor1.obj 
  41.  
  42. DefineInitialize.exe: DefineInitialize.obj 
  43.     $(CPP) $(OFLAG)DefineInitialize.exe DefineInitialize.obj 
  44.  
  45. Nojump.exe: Nojump.obj 
  46.     $(CPP) $(OFLAG)Nojump.exe Nojump.obj 
  47.  
  48. Stash2Test.exe: Stash2Test.obj Stash2.obj 
  49.     $(CPP) $(OFLAG)Stash2Test.exe Stash2Test.obj Stash2.obj 
  50.  
  51. Stack3Test.exe: Stack3Test.obj Stack3.obj 
  52.     $(CPP) $(OFLAG)Stack3Test.exe Stack3Test.obj Stack3.obj 
  53.  
  54. Multiarg.exe: Multiarg.obj 
  55.     $(CPP) $(OFLAG)Multiarg.exe Multiarg.obj 
  56.  
  57. AutoDefaultConstructor.exe: AutoDefaultConstructor.obj 
  58.     $(CPP) $(OFLAG)AutoDefaultConstructor.exe AutoDefaultConstructor.obj 
  59.  
  60.  
  61. Constructor1.obj: Constructor1.cpp 
  62. DefineInitialize.obj: DefineInitialize.cpp ..\require.h 
  63. Nojump.obj: Nojump.cpp 
  64. Stash2.obj: Stash2.cpp Stash2.h 
  65. Stash2Test.obj: Stash2Test.cpp Stash2.h ..\require.h 
  66. Stack3.obj: Stack3.cpp Stack3.h ..\require.h 
  67. Stack3Test.obj: Stack3Test.cpp Stack3.h ..\require.h 
  68. Multiarg.obj: Multiarg.cpp 
  69. AutoDefaultConstructor.obj: AutoDefaultConstructor.cpp 
  70.  
  71.